mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
18 lines
446 B
Dart
18 lines
446 B
Dart
|
import 'dart:convert';
|
||
|
|
||
|
class BitcoinAddressRecord {
|
||
|
BitcoinAddressRecord(this.address, {this.label});
|
||
|
|
||
|
factory BitcoinAddressRecord.fromJSON(String jsonSource) {
|
||
|
final decoded = json.decode(jsonSource) as Map;
|
||
|
|
||
|
return BitcoinAddressRecord(decoded['address'] as String,
|
||
|
label: decoded['label'] as String);
|
||
|
}
|
||
|
|
||
|
final String address;
|
||
|
String label;
|
||
|
|
||
|
String toJSON() => json.encode({'label': label, 'address': address});
|
||
|
}
|