mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-09 04:19:36 +00:00
9 lines
No EOL
158 B
Dart
9 lines
No EOL
158 B
Dart
class AssetIdParams {
|
|
final String assetId;
|
|
|
|
AssetIdParams({required this.assetId});
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'asset_id': assetId,
|
|
};
|
|
} |