CheckBox constructor
CheckBox(
- String 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,
Implementation
CheckBox(
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;