AppWarningWidget constructor

const AppWarningWidget({
  1. Key? key,
  2. required String title,
  3. required String message,
  4. MaterialColor? backgroundColor,
})

Implementation

const AppWarningWidget({
  super.key,
  required this.title,
  required this.message,
  this.backgroundColor,
});