spacer static method
Creates a spacer form field with a specified height, excluded from form valuation and validation.
Implementation
static TFormField<dynamic> spacer([double height = 16]) {
return TFormField<dynamic>(
builder: (_) => SizedBox(height: height),
);
}