createGroup method

Future<void> createGroup(
  1. String groupName,
  2. List<String> userJidList,
  3. String imageFilePath,
  4. dynamic callback(
    1. FlyResponse response
    )?,
)

This method is used to create the group.

Implementation

Future<void> createGroup(String groupName, List<String> userJidList,
    String imageFilePath, Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}