FeatureValueDestination.fromJson constructor

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

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),
  );
}