valueOf static method

GeopackageBinaryType valueOf(
  1. int b
)

Implementation

static GeopackageBinaryType valueOf(int b) {
  return values.firstWhere((v) => v.value == b);
}