Input$PluginInput constructor

Input$PluginInput({
  1. required String name,
  2. String? description,
  3. String? code,
  4. String? cost,
  5. String? url,
  6. String? info,
  7. String? category,
  8. Input$PluginPicturesInput? pictures,
  9. String? icon,
  10. bool? recommended,
})

Implementation

factory Input$PluginInput({
  required String name,
  String? description,
  String? code,
  String? cost,
  String? url,
  String? info,
  String? category,
  Input$PluginPicturesInput? pictures,
  String? icon,
  bool? recommended,
}) =>
    Input$PluginInput._({
      r'name': name,
      if (description != null) r'description': description,
      if (code != null) r'code': code,
      if (cost != null) r'cost': cost,
      if (url != null) r'url': url,
      if (info != null) r'info': info,
      if (category != null) r'category': category,
      if (pictures != null) r'pictures': pictures,
      if (icon != null) r'icon': icon,
      if (recommended != null) r'recommended': recommended,
    });