startCall static method

ActionModel startCall(
  1. String phoneNumber,
  2. bool isTransfer
)

Implementation

static ActionModel startCall(
    String phoneNumber,
    bool isTransfer,
    ) {
  return ActionModel(actionName: OmiActionName.START_CALL, data: {
    'phoneNumber': phoneNumber,
    'isTransfer': isTransfer,
  });
}