NiceValidationSummary constructor

const NiceValidationSummary({
  1. Key? key,
  2. required List<String> errors,
  3. String? title,
  4. IconData? icon,
  5. Color? backgroundColor,
  6. EdgeInsets? padding,
  7. BorderRadius? borderRadius,
})

Implementation

const NiceValidationSummary({
  super.key,
  required this.errors,
  this.title,
  this.icon,
  this.backgroundColor,
  this.padding,
  this.borderRadius,
});