cake_wallet/lib/entities/yat_record.dart

14 lines
271 B
Dart
Raw Normal View History

class YatRecord {
YatRecord({
2022-10-12 17:09:57 +00:00
required this.category,
required this.address,
});
2022-10-12 17:09:57 +00:00
YatRecord.fromJson(Map<String, dynamic> json)
: address = json['address'] as String,
category = json['category'] as String;
2022-10-12 17:09:57 +00:00
String category;
String address;
}