EasyTag constructor

const EasyTag({
  1. Key? key,
  2. required String text,
  3. bool? closable,
  4. EasyThemeType? type,
  5. IconData? icon,
  6. IconData? closeIcon,
  7. Color? color,
  8. bool? ghost,
  9. VoidCallback? onClose,
})

Implementation

const EasyTag({
  Key? key,
  required this.text,
  this.closable,
  this.type,
  this.icon,
  this.closeIcon,
  this.color,
  this.ghost,
  this.onClose,
}) : super(key: key);