EzWarning constructor

const EzWarning({
  1. String warning = 'WARNING',
  2. required String message,
  3. TextStyle? style,
})

Card wrapper designed to grab attention for warnings... (!) warning (!) message

Implementation

const EzWarning({
  this.warning = 'WARNING',
  required this.message,
  this.style,
});