KitBigButton constructor

const KitBigButton({
  1. Widget? child,
  2. String? text,
  3. VoidCallback? onPressed,
  4. Color? color,
  5. Key? key,
})

Implementation

const KitBigButton({
  this.child,
  this.text,
  this.onPressed,
  this.color,
  super.key,
}) : assert(child != null || text != null);