deleteAccount method

Future<void> deleteAccount(
  1. String reason,
  2. String? feedback,
  3. dynamic callback(
    1. 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.');
}