ErrorView constructor

const ErrorView({
  1. String? errorText,
  2. double textSize = 16,
  3. Color textColor = Colors.black26,
  4. Color iconColor = Colors.red,
  5. Key? key,
})

Implementation

const ErrorView({
  this.errorText,
  this.textSize = 16,
  this.textColor = Colors.black26,
  this.iconColor = Colors.red,
  super.key});