ResourcePriority.fromJson constructor

ResourcePriority.fromJson(
  1. String value
)

Implementation

factory ResourcePriority.fromJson(String value) =>
    ResourcePriority.values.firstWhere((e) => e.value == value);