unblockUser method

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

This method is used to unblock the user.

Implementation

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