signOut method
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();
}
}