Input$PriceInput constructor

Input$PriceInput({
  1. String? label,
  2. bool? enable,
  3. String? company,
})

Implementation

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