apple_or_google_pay_info.dart 384 B

1234567891011121314151617
  1. import 'package:electronic_assistant/sdk/pay/assist/product_type.dart';
  2. class AppleOrGooglePayInfo {
  3. final String _productId;
  4. final ProductType _type;
  5. final String? _accountToken;
  6. AppleOrGooglePayInfo(this._productId, this._type, this._accountToken);
  7. String get productId => _productId;
  8. ProductType get type => _type;
  9. String? get accountToken => _accountToken;
  10. }