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