disconnectCall method

Future<void> disconnectCall(
  1. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to disconnect the call.

Implementation

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