FlickerOutlinedButton constructor

const FlickerOutlinedButton({
  1. Key? key,
  2. required VoidCallback? onPressed,
  3. Widget? child,
  4. Color? onPrimaryColor,
})

Implementation

const FlickerOutlinedButton({
  Key? key,
  required this.onPressed,
  this.child,
  this.onPrimaryColor,
}) : super(key: key);