toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (excludeFields != null) 'excludeFields': excludeFields!,
      if (includeFields != null) 'includeFields': includeFields!,
      if (postScanActions != null) 'postScanActions': postScanActions!,
      if (rowFilter != null) 'rowFilter': rowFilter!,
      if (samplingPercent != null) 'samplingPercent': samplingPercent!,
    };