NumberField constructor

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

Implementation

NumberField(
	this.field,
	{
		int? rows,
		int? columns,
		String? shortLabel,
		bool? grows,
		bool? multiline,
		String? schema,
		List<String>? tags,
		List<String>? codifications,
		Map<String, String>? options,
		Map<String, String>? labels,
		String? value,
		String? unit,
		bool? required,
		String? hideCondition,
		bool? now,
		bool? translate
	}) : shortLabel = shortLabel ?? null,
	grows = grows ?? null,
	multiline = multiline ?? null,
	schema = schema ?? null,
	tags = tags ?? null,
	codifications = codifications ?? null,
	options = options ?? null,
	labels = labels ?? null,
	value = value ?? null,
	unit = unit ?? null,
	required = required ?? null,
	hideCondition = hideCondition ?? null,
	now = now ?? null,
	translate = translate ?? null,
	_rows = rows ?? null,
	_columns = columns ?? null;