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