makeCallWithExtraContext method
Create new outgoing call to the specified account number
with extra context extraContext
Implementation
@override
Future<void> makeCallWithExtraContext({required String number,required String extraContext}) async {
return await callClientMethodChannel
.invokeMethod<void>('makeCall', {"number": number, "extraContext": extraContext});
}