fromValue static method
Implementation
static AuthyoSocialLayout fromValue(Object? raw) {
final v = raw is int ? raw : int.tryParse('$raw');
return values.firstWhere((e) => e.value == v, orElse: () => bottom);
}
static AuthyoSocialLayout fromValue(Object? raw) {
final v = raw is int ? raw : int.tryParse('$raw');
return values.firstWhere((e) => e.value == v, orElse: () => bottom);
}