apple_pay_info.dart 236 B

12345678910111213
  1. import '../assist/product_type.dart';
  2. class ApplePayInfo {
  3. final String _productId;
  4. final ProductType _type;
  5. ApplePayInfo(this._productId, this._type);
  6. String get productId => _productId;
  7. ProductType get type => _type;
  8. }