ToastWidget constructor

const ToastWidget({
  1. Key? key,
  2. required String message,
  3. Color backgroundColor = const Color(0xFF002147),
  4. TextStyle textStyle = const TextStyle(color: Colors.white, fontWeight: FontWeight.w600),
})

Implementation

const ToastWidget({
  Key? key,
  required this.message,
  this.backgroundColor = const Color(0xFF002147),
  this.textStyle = const TextStyle(color: Colors.white, fontWeight: FontWeight.w600),
}) : super(key: key);