Input$PluginValueInput constructor

Input$PluginValueInput({
  1. String? str,
  2. int? i,
  3. bool? b,
  4. double? f,
  5. List<Input$PluginArgInput>? o,
  6. List<Input$PluginValueInput>? a,
})

Implementation

factory Input$PluginValueInput({
  String? str,
  int? i,
  bool? b,
  double? f,
  List<Input$PluginArgInput>? o,
  List<Input$PluginValueInput>? a,
}) => Input$PluginValueInput._({
  if (str != null) r'str': str,
  if (i != null) r'i': i,
  if (b != null) r'b': b,
  if (f != null) r'f': f,
  if (o != null) r'o': o,
  if (a != null) r'a': a,
});