fromWire static method

Implementation

static PatchbayPermissionFactSource fromWire(Object? value) =>
    values.firstWhere(
      (PatchbayPermissionFactSource source) => source.name == value,
      orElse: () => unknown,
    );