HeaderField constructor
HeaderField({})
Implementation
HeaderField({
required super.name,
String? content,
this.contentColor,
this.contentIcon,
this.contentFontSize,
this.useAsDivider = false,
String? id,
super.type = FieldType.headerField,
}) : content = content ?? name,
super(id: id ?? '${toSnakeCase(name)}_header', showInList: false, realField: false);