ActionLink constructor

const ActionLink(
  1. String text, {
  2. required ActionLinkCallback onTap,
  3. Key? key,
  4. TextStyle? textStyle,
  5. double fontSizeFactor = 1.0,
})

Implementation

const ActionLink(this.text, {
    required this.onTap,
    Key? key,
    this.textStyle,
    this.fontSizeFactor = 1.0
}) : super(key: key);