Add Dart support

This commit is contained in:
Yissachar Radcliffe
2015-09-06 18:35:29 -04:00
parent ee1febcd95
commit e72a53448e
40 changed files with 2477 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
part of api;
abstract class Authentication {
void applyToParams(Map<String, String> queryParams, Map<String, String> headerParams);
}