MinimalistButton constructor

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

Implementation

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