AppSnackBar constructor

const AppSnackBar({
  1. required String message,
  2. Key? key,
  3. IconData? prefixIcon,
  4. Color? backgroundColor,
})

Basf AppSnackBar default

Implementation

const AppSnackBar({
  required this.message,
  super.key,
  this.prefixIcon,
  this.backgroundColor,
});