import 'package:pshared/models/payment/methods/data.dart'; import 'package:pshared/models/payment/type.dart'; class CryptoAddressPaymentMethod extends PaymentMethodData { @override final PaymentType type = PaymentType.cryptoAddress; final String address; final String network; final String? destinationTag; CryptoAddressPaymentMethod({ required this.address, required this.network, this.destinationTag, }); }