FlickerElevatedButton constructor

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

Implementation

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