RehaculSnackBar constructor

const RehaculSnackBar(
  1. {Key? key,
  2. required String message,
  3. Color? textColor,
  4. Color? backgroundColor,
  5. required double height}
)

Implementation

const RehaculSnackBar({
  Key? key,
  required this.message,
  this.textColor,
  this.backgroundColor,
  required this.height,
}) : super(key: key);