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