mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 10:11:03 +00:00
c0836f9c67
and don't check for them in selection views
61 lines
1.2 KiB
Dart
61 lines
1.2 KiB
Dart
class Crypto {
|
|
/// Crypto ticker
|
|
final String ticker;
|
|
|
|
/// Crypto name
|
|
final String name;
|
|
|
|
/// Crypto network
|
|
final String? network;
|
|
|
|
/// Crypto contract address
|
|
final String? contractAddress;
|
|
|
|
Crypto({
|
|
required this.ticker,
|
|
required this.name,
|
|
required this.network,
|
|
required this.contractAddress,
|
|
});
|
|
|
|
factory Crypto.fromJson(Map<String, dynamic> json) {
|
|
try {
|
|
return Crypto(
|
|
ticker: "${json['ticker']}",
|
|
name: "${json['name']}",
|
|
network: "${json['network']}",
|
|
contractAddress: "${json['contractAddress']}",
|
|
);
|
|
} catch (e) {
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final map = {
|
|
"ticker": ticker,
|
|
"name": name,
|
|
"network": network,
|
|
"contractAddress": contractAddress,
|
|
};
|
|
|
|
return map;
|
|
}
|
|
|
|
Crypto copyWith({
|
|
String? ticker,
|
|
String? name,
|
|
}) {
|
|
return Crypto(
|
|
ticker: ticker ?? this.ticker,
|
|
name: name ?? this.name,
|
|
network: network ?? this.network,
|
|
contractAddress: contractAddress ?? this.contractAddress,
|
|
);
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
return "Crypto: ${toJson()}";
|
|
}
|
|
}
|