deleteGroup method

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

This method is used to delete the group.

Implementation

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