fromValue static method

MobiEncoding fromValue(
  1. int value
)

Implementation

static MobiEncoding fromValue(int value) {
  return MobiEncoding.values.firstWhere((element) => element.value == value);
}