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