ContentEncoding.fromJson constructor

ContentEncoding.fromJson(
  1. String value
)

Implementation

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