LinkButton constructor

const LinkButton({
  1. Key? key,
  2. ImageProvider<Object>? image,
  3. required String text,
  4. VoidCallback? onPressed,
})

Implementation

const LinkButton({
  Key? key,
  this.image,
  required this.text,
  this.onPressed,
}) : super(key: key);