startCall method

Future<void> startCall(
  1. CallKeepOutgoingConfig config
)

Start an Outgoing call. On iOS, using Callkit(create a history into the Phone app). On Android, Nothing(only callback event listener).

Implementation

Future<void> startCall(CallKeepOutgoingConfig config) async {
  await _channel.invokeMethod("startCall", config.toMap());
}