From 24d8a3ebb5a16550a99cae65ea0f594d91724e6f Mon Sep 17 00:00:00 2001 From: Sven Adolph Date: Thu, 20 Feb 2020 11:02:00 +0100 Subject: [PATCH] Fixes issue 86 --- .../lib/src/method_channel_flutter_appauth.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_appauth_platform_interface/lib/src/method_channel_flutter_appauth.dart b/flutter_appauth_platform_interface/lib/src/method_channel_flutter_appauth.dart index 8280398f..8999dfa3 100644 --- a/flutter_appauth_platform_interface/lib/src/method_channel_flutter_appauth.dart +++ b/flutter_appauth_platform_interface/lib/src/method_channel_flutter_appauth.dart @@ -62,6 +62,6 @@ class MethodChannelFlutterAppAuth extends FlutterAppAuthPlatform { result['accessTokenExpirationTime'].toInt()), result['idToken'], result['tokenType'], - result['tokenAdditionalParameters']?.cast()); + result['tokenAdditionalParameters']?.cast()); } }