Keystore.fromJson constructor

Keystore.fromJson(Map<String, dynamic> json)

Implementation

Keystore.fromJson(Map<String, dynamic> json) {
  type = json['type'];
  label = json['label'];
  algorithm = json['algorithm'];
  salt = json['salt'];
  scrypt = ScryptParams.fromJson(json['scrypt']);
  key = json['key'];
  address = json['address'];
  parameters = KeyParameters.fromJson(json['parameters']);
}