toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (excludedFields != null) 'excludedFields': excludedFields!,
  if (identifyingFields != null) 'identifyingFields': identifyingFields!,
  if (includedFields != null) 'includedFields': includedFields!,
  if (rowsLimit != null) 'rowsLimit': rowsLimit!,
  if (rowsLimitPercent != null) 'rowsLimitPercent': rowsLimitPercent!,
  if (sampleMethod != null) 'sampleMethod': sampleMethod!,
  if (tableReference != null) 'tableReference': tableReference!,
};