isCallConnected method

Future<bool?> isCallConnected({
  1. required dynamic callback(
    1. FlyResponse response
    ),
})

This method is used to whether the call is connected or not

Implementation

Future<bool?> isCallConnected(
    {required Function(FlyResponse response) callback}) {
  throw UnimplementedError('answerCall() has not been implemented.');
}