fromString static method
Implementation
static UserProfileVariant fromString(String? value) {
switch (value) {
case 'sdkModal':
return UserProfileVariant.sdkModal;
default:
return UserProfileVariant.normal;
}
}
static UserProfileVariant fromString(String? value) {
switch (value) {
case 'sdkModal':
return UserProfileVariant.sdkModal;
default:
return UserProfileVariant.normal;
}
}