SnackbarButton constructor

const SnackbarButton({
  1. required dynamic onPressed(),
  2. Widget? child,
  3. Color? color,
  4. Color? textColor,
  5. String? text,
})

Implementation

const SnackbarButton(
    {required this.onPressed,
    this.child,
    this.color,
    this.textColor,
    this.text});