JidoujishoPlaceholderMessage constructor

const JidoujishoPlaceholderMessage(
  1. {required IconData icon,
  2. required String message,
  3. Color? color,
  4. double? iconSize,
  5. TextStyle? messageStyle,
  6. Key? key}
)

Instantiate a decorative information/error message with an icon.

Implementation

const JidoujishoPlaceholderMessage({
  required this.icon,
  required this.message,
  this.color,
  this.iconSize,
  this.messageStyle,
  super.key,
});