FeatureValueDestination.fromJson constructor
Implementation
factory FeatureValueDestination.fromJson(Map<String, dynamic> json) {
return FeatureValueDestination(
bigqueryDestination: decode(
json['bigqueryDestination'],
BigQueryDestination.fromJson,
),
tfrecordDestination: decode(
json['tfrecordDestination'],
TfrecordDestination.fromJson,
),
csvDestination: decode(json['csvDestination'], CsvDestination.fromJson),
);
}