AppSnackBar constructor

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

Implementation

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