valueOf static method
Implementation
static ProfileAssociatedChatAllowIncoming? valueOf(final String? value) {
if (value == null) return null;
final knownValue = KnownProfileAssociatedChatAllowIncoming.valueOf(value);
return knownValue != null
? ProfileAssociatedChatAllowIncoming.knownValue(data: knownValue)
: ProfileAssociatedChatAllowIncoming.unknown(data: value);
}