ApplePayButton constructor

const ApplePayButton({
  1. Key? key,
  2. required String sessionId,
  3. void onResult(
    1. Map<String, dynamic> result
    )?,
  4. double? width,
  5. double? height,
})

Implementation

const ApplePayButton({
  super.key,
  required this.sessionId,
  this.onResult,
  this.width,
  this.height,
});