EasyFormFieldError constructor

const EasyFormFieldError({
  1. Key? key,
  2. required String name,
  3. TextStyle? textStyle,
  4. TextAlign? textAlign,
  5. EasyFormFieldErrorBuilder? builder,
})

Creates an error display widget.

Implementation

const EasyFormFieldError({
  Key? key,
  required this.name,
  this.textStyle,
  this.textAlign,
  this.builder,
}) : super(key: key);