signIn method
signIn(scopes) Logs the user in to the Amazon service Accepts an optional array of scopes and returns a string
Implementation
@override
/// signIn(scopes)
/// Logs the user in to the Amazon service
/// Accepts an optional array of scopes and returns a string
Future<String?> signIn({required List scopes}) async {
final response =
await methodChannel.invokeMethod<String>('signIn', {'scopes': scopes});
return response;
}