CDKButtonColor constructor

const CDKButtonColor(
  1. {Key? key,
  2. VoidCallback? onPressed,
  3. required Color color,
  4. bool enabled = true}
)

Implementation

const CDKButtonColor({
  Key? key,
  this.onPressed,
  required this.color,
  this.enabled = true,
}) : super(key: key);