fromWire static method

PermissionBehavior fromWire(
  1. String value
)

Parses an SDK wire string into a PermissionBehavior.

Implementation

static PermissionBehavior fromWire(String value) =>
    values.firstWhere((e) => e.wire == value);