mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-15 15:14:31 +00:00
16 lines
298 B
Dart
16 lines
298 B
Dart
|
class EthToken {
|
||
|
EthToken({
|
||
|
required this.contractAddress,
|
||
|
required this.name,
|
||
|
required this.symbol,
|
||
|
required this.decimals,
|
||
|
required this.balance,
|
||
|
});
|
||
|
|
||
|
final String contractAddress;
|
||
|
final String name;
|
||
|
final String symbol;
|
||
|
final int decimals;
|
||
|
final int balance;
|
||
|
}
|