LinkAlert constructor Null safety

const LinkAlert(
  1. {Key? key,
  2. required String link,
  3. required String msg,
  4. String label = "",
  5. Color? color}
)

Implementation

const LinkAlert({
  Key? key,
  required this.link,
  required this.msg,
  this.label = "",
  this.color,
}) : super(key: key);