Dart 2 fixes

This commit is contained in:
Tobe O 2018-07-09 12:28:46 -04:00
parent aca5489e8d
commit 0a0a5b1e57

View file

@ -368,7 +368,7 @@ abstract class AuthorizationServer<Client, User> {
}
if (response != null) {
return {'token_type': AuthorizationTokenType.bearer}
return <String, dynamic>{'token_type': AuthorizationTokenType.bearer}
..addAll(response.toJson());
}