makeGroupVoiceCall method

Future<void> makeGroupVoiceCall(
  1. String groupJid,
  2. List<String>? jidList,
  3. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to make the group voice call.

Implementation

Future<void> makeGroupVoiceCall(String groupJid, List<String>? jidList,
    Function(FlyResponse response)? callback) async {
  throw UnimplementedError('makeGroupVoiceCall has not been implemented.');
}