toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (csvExportOptions != null)
        'csvExportOptions': csvExportOptions!.toJson(),
      if (databases != null) 'databases': databases!,
      if (fileType != null) 'fileType': fileType!,
      if (kind != null) 'kind': kind!,
      if (offload != null) 'offload': offload!,
      if (sqlExportOptions != null)
        'sqlExportOptions': sqlExportOptions!.toJson(),
      if (uri != null) 'uri': uri!,
    };