Button constructor
const
Button({})
Implementation
const Button({
Key? key,
required this.text,
this.onPressed,
this.isPrimary = true,
this.isDisabled = false,
this.color,
this.leading,
}) : super(key: key);