deleteAccount method
Implementation
@override
Future<dynamic> deleteAccount(String reason, String? feedback) async {
dynamic response;
try {
response = await mirrorFlyMethodChannel.invokeMethod('delete_account',
{"delete_reason": reason, "delete_feedback": feedback});
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}