deleteAccount method
Future<void>
deleteAccount(
- String reason,
- String? feedback,
- dynamic callback(
- FlyResponse response
This method is used to delete the account.
Implementation
Future<void> deleteAccount(String reason, String? feedback,
Function(FlyResponse response)? callback) {
throw UnimplementedError('has not been implemented.');
}