CheckBox constructor

const CheckBox({
  1. required String field,
  2. @Default(null) String? shortLabel,
  3. @Default(null) int? rows,
  4. @Default(null) int? columns,
  5. @Default(null) bool? grows,
  6. @Default(null) bool? multiline,
  7. @Default(null) String? schema,
  8. @Default(null) List<String>? tags,
  9. @Default(null) List<String>? codifications,
  10. @Default(null) Map<String, String>? options,
  11. @Default(null) Map<String, String>? labels,
  12. @Default(null) String? value,
  13. @Default(null) String? unit,
  14. @Default(null) bool? required,
  15. @Default(null) String? hideCondition,
  16. @Default(null) bool? now,
  17. @Default(null) bool? translate,
})

Implementation

const factory CheckBox({
	required String field,
	@Default(null) String? shortLabel,
	@Default(null) int? rows,
	@Default(null) int? columns,
	@Default(null) bool? grows,
	@Default(null) bool? multiline,
	@Default(null) String? schema,
	@Default(null) List<String>? tags,
	@Default(null) List<String>? codifications,
	@Default(null) Map<String, String>? options,
	@Default(null) Map<String, String>? labels,
	@Default(null) String? value,
	@Default(null) String? unit,
	@Default(null) bool? required,
	@Default(null) String? hideCondition,
	@Default(null) bool? now,
	@Default(null) bool? translate,
}) = _CheckBox;