import '../assist/product_type.dart'; class ApplePayInfo { final String _productId; final ProductType _type; ApplePayInfo(this._productId, this._type); String get productId => _productId; ProductType get type => _type; }