startCall method

Future startCall(
  1. String phoneNumber,
  2. bool isVideo
)

Implementation

Future<dynamic> startCall(
  String phoneNumber,
  bool isVideo,
) async {
  final action = OmiAction(actionName: OmiActionName.START_CALL, data: {
    'phoneNumber': phoneNumber,
    'isVideo': isVideo,
  });
  return await _controller.action(action);
}