Input$PredefinedActionInput constructor

Input$PredefinedActionInput({
  1. bool? enable,
  2. String? action,
})

Implementation

factory Input$PredefinedActionInput({
  bool? enable,
  String? action,
}) =>
    Input$PredefinedActionInput._({
      if (enable != null) r'enable': enable,
      if (action != null) r'action': action,
    });