toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final excludedFields = this.excludedFields;
final identifyingFields = this.identifyingFields;
final includedFields = this.includedFields;
final rowsLimit = this.rowsLimit;
final rowsLimitPercent = this.rowsLimitPercent;
final sampleMethod = this.sampleMethod;
final tableReference = this.tableReference;
return {
'excludedFields': ?excludedFields,
'identifyingFields': ?identifyingFields,
'includedFields': ?includedFields,
'rowsLimit': ?rowsLimit,
'rowsLimitPercent': ?rowsLimitPercent,
'sampleMethod': ?sampleMethod,
'tableReference': ?tableReference,
};
}