toJson method
Implementation
@override
Object toJson() => {
'csvReadInstances': ?csvReadInstances?.toJson(),
'bigqueryReadInstances': ?bigqueryReadInstances?.toJson(),
'featurestore': featurestore,
'destination': ?destination?.toJson(),
if (passThroughFields.isNotDefault)
'passThroughFields': [for (final i in passThroughFields) i.toJson()],
'entityTypeSpecs': [for (final i in entityTypeSpecs) i.toJson()],
'startTime': ?startTime?.toJson(),
};