Input$ShortcutUpdateInput constructor

Input$ShortcutUpdateInput({
  1. String? label,
  2. String? description,
  3. String? icon,
  4. Input$PictureInput? picture,
  5. String? link,
  6. bool? router,
  7. Input$TargetACIInput? target,
})

Implementation

factory Input$ShortcutUpdateInput({
  String? label,
  String? description,
  String? icon,
  Input$PictureInput? picture,
  String? link,
  bool? router,
  Input$TargetACIInput? target,
}) =>
    Input$ShortcutUpdateInput._({
      if (label != null) r'label': label,
      if (description != null) r'description': description,
      if (icon != null) r'icon': icon,
      if (picture != null) r'picture': picture,
      if (link != null) r'link': link,
      if (router != null) r'router': router,
      if (target != null) r'target': target,
    });