tryFromWire static method
Implementation
static OutsideTapBehavior? tryFromWire(String value) =>
switch (value.trim().toLowerCase()) {
'next' => next,
'nothing' => nothing,
_ => null,
};
static OutsideTapBehavior? tryFromWire(String value) =>
switch (value.trim().toLowerCase()) {
'next' => next,
'nothing' => nothing,
_ => null,
};