apple_or_google_pay_info.dart 286 B

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