ExportContextCsvExportOptions.fromJson constructor

ExportContextCsvExportOptions.fromJson(
  1. Map _json
)

Implementation

ExportContextCsvExportOptions.fromJson(core.Map _json)
    : this(
        selectQuery: _json.containsKey('selectQuery')
            ? _json['selectQuery'] as core.String
            : null,
      );