answerCall method

Future<void> answerCall({
  1. required dynamic callback(
    1. FlyResponse response
    ),
})

This method is used to answer the call

Implementation

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