makeCall method

  1. @override
Future makeCall(
  1. String phoneNo,
  2. bool isVideo
)
override

Implementation

@override
Future makeCall(String phoneNo, bool isVideo) async {
  Map option = {};
  option["phoneNo"] = phoneNo;
  option["isVideo"] = isVideo;
  return await methodChannel.invokeMethod('makeCall', option);
}