tryFromWire static method

OutsideTapBehavior? tryFromWire(
  1. String value
)

Implementation

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