CreateFeaturestoreRequest.fromJson constructor

CreateFeaturestoreRequest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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