fromWire static method

CommandEventKind fromWire(
  1. String v
)

Implementation

static CommandEventKind fromWire(String v) => values.firstWhere(
      (k) => k.wire == v,
      orElse: () => throw FormatException('unknown command event kind: $v'),
    );