fromCode static method

WalBinOp fromCode(
  1. int c
)

Implementation

static WalBinOp fromCode(int c) =>
    WalBinOp.values.firstWhere((e) => e.code == c,
        orElse: () => throw FormatException('Unknown WAL op: 0x${c.toRadixString(16)}'));