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