Link constructor

const Link(
  1. Widget child, {
  2. Key? key,
  3. Color color = _defaultColor,
  4. VoidCallback? onTap,
})

A Text widget wrapped in an InkWell.

Implementation

const Link(
  this.child, {
  super.key,
  this.color = _defaultColor,
  this.onTap,
});