CreateFeaturestoreRequest.fromJson constructor
Implementation
factory CreateFeaturestoreRequest.fromJson(Map<String, dynamic> json) {
return CreateFeaturestoreRequest(
parent: json['parent'] ?? '',
featurestore: decode(json['featurestore'], Featurestore.fromJson),
featurestoreId: json['featurestoreId'] ?? '',
);
}