AddToWalletButton constructor

AddToWalletButton({
  1. Key? key,
  2. required List<int> pkPass,
  3. required double width,
  4. required double height,
  5. FutureOr<void> onPressed()?,
  6. Widget? unsupportedPlatformChild,
})

Implementation

AddToWalletButton(
    {Key? key,
    required this.pkPass,
    required this.width,
    required this.height,
    this.onPressed,
    this.unsupportedPlatformChild})
    : super(key: key);