description method

  1. @override
FieldDescription description([
  1. BuildContext? context
])
override

Implementation

@override
FieldDescription description([BuildContext? context]) {
  return const FieldDescription(
    icon: IconPack.mdi_form_textbox,
    color: Color.fromRGBO(149, 112, 77, 1),
    title: 'String field',
    description: 'A field for entering lines with the ability to specify a fixed height of the field itself or make the height dynamic',
  );
}