fromWire static method
Implementation
static CommandStatus fromWire(String v) => values.firstWhere(
(s) => s.wire == v,
orElse: () => throw FormatException('unknown command status: $v'),
);
static CommandStatus fromWire(String v) => values.firstWhere(
(s) => s.wire == v,
orElse: () => throw FormatException('unknown command status: $v'),
);