RawGooglePayButton constructor

const RawGooglePayButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. GooglePayButtonStyle style = GooglePayButtonStyle.black,
  4. GooglePayButtonType type = GooglePayButtonType.pay,
})

Raw button without Google Pay processing logic

Implementation

const RawGooglePayButton({
  Key? key,
  this.onPressed,
  this.style = GooglePayButtonStyle.black,
  this.type = GooglePayButtonType.pay,
}) : super(key: key);