blockUser method

Future<void> blockUser(
  1. String userJID,
  2. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to block the user.

Implementation

Future<void> blockUser(
    String userJID, Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}