toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (country != null) 'country': country!,
  if (datafeedId != null) 'datafeedId': datafeedId!,
  if (errors != null) 'errors': errors!,
  if (feedLabel != null) 'feedLabel': feedLabel!,
  if (itemsTotal != null) 'itemsTotal': itemsTotal!,
  if (itemsValid != null) 'itemsValid': itemsValid!,
  if (kind != null) 'kind': kind!,
  if (language != null) 'language': language!,
  if (lastUploadDate != null) 'lastUploadDate': lastUploadDate!,
  if (processingStatus != null) 'processingStatus': processingStatus!,
  if (warnings != null) 'warnings': warnings!,
};