signOut method

  1. @override
Future<bool> signOut()
override

Implementation

@override
Future<bool> signOut() async {
  try {
    await this.api.signOut();

    return true;
  } on Exception catch (e) {
    ModLogger.e(tag: TAG, msg: "${e.toString()}", error: e);
    throw ModDataException();
  }
}