NotifyCard constructor

const NotifyCard({
  1. required String text,
  2. Color? primaryColor,
  3. String? svgIcon,
  4. Key? key,
})

Implementation

const NotifyCard({
  required this.text,
  this.primaryColor,
  this.svgIcon,
  Key? key,
}) : super(key: key);