makeAdmin method

Future<void> makeAdmin(
  1. String groupjid,
  2. String userjid,
  3. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to make the user as admin in a group.

Implementation

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