toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (csvExportOptions != null) 'csvExportOptions': csvExportOptions!,
      if (database != null) 'database': database!,
      if (gcsDestination != null) 'gcsDestination': gcsDestination!,
      if (sqlExportOptions != null) 'sqlExportOptions': sqlExportOptions!,
    };