15 lines
304 B
Dart
15 lines
304 B
Dart
import 'package:pshared/models/payment/chain_network.dart';
|
|
|
|
|
|
class PaymentAsset {
|
|
final ChainNetwork chain;
|
|
final String tokenSymbol;
|
|
final String? contractAddress;
|
|
|
|
const PaymentAsset({
|
|
this.chain = ChainNetwork.unspecified,
|
|
required this.tokenSymbol,
|
|
this.contractAddress,
|
|
});
|
|
}
|