AwsFlolinkButton constructor

AwsFlolinkButton({
  1. Key? key,
  2. TextDecoration decoration = TextDecoration.underline,
  3. required String text,
  4. void onPressed()?,
  5. double? fontSize,
  6. Color? isHover,
  7. Color? notHover,
  8. TextStyle? style,
})

Implementation

AwsFlolinkButton({
  Key? key,
  this.decoration = TextDecoration.underline,
  required this.text,
  this.onPressed,
  this.fontSize,
  this.isHover,
  this.notHover,
  this.style,
}) : super(key: key);