addUsersToGroup method

Future<void> addUsersToGroup(
  1. String jid,
  2. List<String> userList,
  3. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to add the members to the group.

Implementation

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