toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (csvOptions != null) 'csvOptions': csvOptions!,
      if (enabled != null) 'enabled': enabled!,
      if (excludePatterns != null) 'excludePatterns': excludePatterns!,
      if (includePatterns != null) 'includePatterns': includePatterns!,
      if (jsonOptions != null) 'jsonOptions': jsonOptions!,
      if (schedule != null) 'schedule': schedule!,
    };