toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final contentLanguage = this.contentLanguage;
  final customAttributes = this.customAttributes;
  final feedLabel = this.feedLabel;
  final finalName = this.finalName;
  final freshnessTime = this.freshnessTime;
  final name = this.name;
  final rawProvidedId = this.rawProvidedId;
  return {
    'attributes': ?attributes,
    'contentLanguage': ?contentLanguage,
    'customAttributes': ?customAttributes,
    'feedLabel': ?feedLabel,
    'finalName': ?finalName,
    'freshnessTime': ?freshnessTime,
    'name': ?name,
    'rawProvidedId': ?rawProvidedId,
  };
}