Parameter.fromJson constructor

Parameter.fromJson(
  1. 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'] as core.Object : null,
      );