CDKButtonColor constructor
- {Key? key,
- VoidCallback? onPressed,
- required Color color,
- bool enabled = true}
Implementation
const CDKButtonColor({
Key? key,
this.onPressed,
required this.color,
this.enabled = true,
}) : super(key: key);
const CDKButtonColor({
Key? key,
this.onPressed,
required this.color,
this.enabled = true,
}) : super(key: key);