NiceValidationSummary constructor

const NiceValidationSummary({
  1. Key? key,
  2. required Map<String, String> errors,
  3. String title = 'Please fix the following errors:',
  4. void onErrorTap(
    1. String fieldName
    )?,
})

Implementation

const NiceValidationSummary({
  super.key,
  required this.errors,
  this.title = 'Please fix the following errors:',
  this.onErrorTap,
});