JidoujishoTag constructor

const JidoujishoTag(
  1. {required String text,
  2. required Color backgroundColor,
  3. String? message,
  4. String? trailingText,
  5. IconData? icon,
  6. Color foregroundColor = Colors.white,
  7. double? iconSize,
  8. TextStyle? style,
  9. Key? key}
)

Create a tag that can be clicked on for more information.

Implementation

const JidoujishoTag({
  required this.text,
  required this.backgroundColor,
  this.message,
  this.trailingText,
  this.icon,
  this.foregroundColor = Colors.white,
  this.iconSize,
  this.style,
  super.key,
});