acceptCall method

  1. @override
Future<void> acceptCall(
  1. String uuid
)
override

Accept an incoming call with the specified uuid.

This is only used when the incoming call is not displayed natively.

Implementation

@override
Future<void> acceptCall(String uuid) async {
  return methodChannel.invokeMethod("acceptCall", {'id': uuid});
}