- import 'package:electronic_assistant/sdk/pay/assist/product_type.dart';
- class AppleOrGooglePayInfo {
- final String _productId;
- final ProductType _type;
- AppleOrGooglePayInfo(this._productId, this._type);
- String get productId => _productId;
- ProductType get type => _type;
- }
|