signOut method

Future<String?> signOut()

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

Implementation

Future<String?> signOut() async {
  final response = await _instance.signOut();
  return response;
}