fromString static method
Implementation
static DeviceState fromString(String raw) {
return switch (raw.toLowerCase()) {
'booted' || 'running' => booted,
'booting' => booting,
_ => shutdown,
};
}
static DeviceState fromString(String raw) {
return switch (raw.toLowerCase()) {
'booted' || 'running' => booted,
'booting' => booting,
_ => shutdown,
};
}