startCall method
Start an Outgoing call. On iOS, using Callkit(create a history into the Phone app). On Android, Nothing(only callback event listener).
Implementation
@override
Future<void> startCall(StreamVideoPushParams params) async {
await methodChannel.invokeMethod('startCall', params.toJson());
}