GuestOsFeature.fromJson constructor
GuestOsFeature.fromJson(
- Object? j
Implementation
factory GuestOsFeature.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return GuestOsFeature(
type: switch (json['type']) {
null => null,
Object $1 => decodeString($1),
},
);
}