VertexMultimodalDatasetDestination.fromJson constructor

VertexMultimodalDatasetDestination.fromJson(
  1. Object? j
)

Implementation

factory VertexMultimodalDatasetDestination.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return VertexMultimodalDatasetDestination(
    bigqueryDestination: switch (json['bigqueryDestination']) {
      null => null,
      Object $1 => BigQueryDestination.fromJson($1),
    },
    displayName: switch (json['displayName']) {
      null => '',
      Object $1 => decodeString($1),
    },
  );
}