Priority.fromJson constructor

Priority.fromJson(
  1. Map _json
)

Implementation

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