startServices method

Future<void> startServices({
  1. bool showMissedCall = true,
})

Implementation

Future<void> startServices({
  bool showMissedCall = true,
}) async {
  final action = OmiAction(
    actionName: OmiActionName.START_SERVICES,
    data: {
      "showMissedCall": showMissedCall,
    },
  );
  return await _controller.action(action);
}