| Index: lib/html/templates/html/interface/interface_HttpRequest.darttemplate
|
| diff --git a/lib/html/templates/html/interface/interface_HttpRequest.darttemplate b/lib/html/templates/html/interface/interface_HttpRequest.darttemplate
|
| index 8ab4cedf4f68aede603adcd04c451a8eb9e31a14..c705976a112624781b851b9ff7e101c61cdcb2c0 100644
|
| --- a/lib/html/templates/html/interface/interface_HttpRequest.darttemplate
|
| +++ b/lib/html/templates/html/interface/interface_HttpRequest.darttemplate
|
| @@ -5,8 +5,10 @@
|
| // WARNING: Do not edit - generated code.
|
|
|
| $!COMMENT
|
| -interface $ID$EXTENDS {
|
| - $ID.get(String url, onSuccess($ID request));
|
| +abstract class $ID$EXTENDS {
|
| + factory $ID.get(String url, onSuccess($ID request)) =>
|
| + _$(ID)FactoryProvider.create$(ID)_get(url, onSuccess);
|
|
|
| - $ID.getWithCredentials(String url, onSuccess($ID request));
|
| + factory $ID.getWithCredentials(String url, onSuccess($ID request)) =>
|
| + _$(ID)FactoryProvider.create$(ID)getWithCredentials(url, onSuccess);
|
| $!MEMBERS}
|
|
|