onMute static method

ActionModel onMute(
  1. bool isMute
)

Implementation

static ActionModel onMute(bool isMute) {
  return ActionModel(
    actionName: OmiActionName.ON_MUTE,
    data: {
      'isMute': isMute,
    },
  );
}