makeVideoCall method

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

This method is used to make the video call.

Implementation

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