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