GoogleButton constructor

const GoogleButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. bool disabled = false,
})

Implementation

const GoogleButton({
  Key? key,
  this.onPressed,
  this.disabled = false,
}) : super(key: key);