FailSnackBarFirstWidget constructor

const FailSnackBarFirstWidget({
  1. Key? key,
  2. Color? textColor,
  3. Color? disabledTextColor,
  4. required String label,
  5. required VoidCallback onPressed,
  6. Color primaryColor = Colors.red,
  7. TextStyle? titleTextStyle,
})

Implementation

const FailSnackBarFirstWidget({
  Key? key,
  this.textColor,
  this.disabledTextColor,
  required this.label,
  required this.onPressed,
  this.primaryColor = Colors.red,
  this.titleTextStyle,
}) : super(key: key);