signOut method

  1. @override
Future<String?> signOut()
override

signOut() Logs the user out of the Amazon service and expires their token Returns a string

Implementation

@override

/// signOut()
/// Logs the user out of the Amazon service and expires their token
/// Returns a string
Future<String?> signOut() async {
  final response = await methodChannel.invokeMethod<String>('signOut');
  return response;
}