ErrorLineCell constructor

const ErrorLineCell({
  1. Key? key,
  2. String? errorText,
  3. IconData errorIcon = Icons.info_outline,
  4. Color errorColor = Colors.red,
  5. double? height,
  6. Color? backgroundColor,
  7. VoidCallback? onTap,
  8. bool center = false,
})

Implementation

const ErrorLineCell({
  Key? key,
  this.errorText,
  this.errorIcon = Icons.info_outline,
  this.errorColor = Colors.red,
  this.height,
  this.backgroundColor,
  this.onTap,
  this.center = false,
}) : super(key: key);