KeyFile.fromJson constructor

KeyFile.fromJson(
  1. Map<String, dynamic> json
)

Implementation

KeyFile.fromJson(Map<String, dynamic> json) {
  baseAddress = Address.parse(json['baseAddress']);
  crypto = json['crypto'] != null ? _Crypto.fromJson(json['crypto']) : null;
  timestamp = json['timestamp'];
  version = json['version'];
}