Hash.fromJson constructor
Hash.fromJson(
- Map _json
Implementation
Hash.fromJson(core.Map _json)
: this(
type: _json.containsKey('type') ? _json['type'] as core.String : null,
value:
_json.containsKey('value') ? _json['value'] as core.String : null,
);