startHotlineCall method
void
startHotlineCall()
override
Implementation
@override
void startHotlineCall(
String callerId,
String callerName,
String? callerAvatar,
) async {
await methodChannel.invokeMethod(
'startHotlineCall',
{
'callerId': callerId,
'callerName': callerName,
'callerAvatar': callerAvatar,
},
);
}