valueOf static method

Implementation

static ProfileAssociatedGermShowButtonTo? valueOf(final String? value) {
  if (value == null) return null;
  final knownValue = KnownProfileAssociatedGermShowButtonTo.valueOf(value);

  return knownValue != null
      ? ProfileAssociatedGermShowButtonTo.knownValue(data: knownValue)
      : ProfileAssociatedGermShowButtonTo.unknown(data: value);
}