deleteAccount method
Future<void>
deleteAccount(
- String reason,
- String? feedback,
- dynamic callback(
- FlyResponse response
override
This method is used to delete the account.
Implementation
@override
Future<void> deleteAccount(String reason, String? feedback,
Function(FlyResponse response)? callback) async {
// bool? response;
try {
await mirrorFlyMethodChannel.invokeMethod<bool>('delete_account',
{"delete_reason": reason, "delete_feedback": feedback});
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
// return response;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}