toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customAttributes = this.customAttributes;
  final etag = this.etag;
  final eventTypes = this.eventTypes;
  final id = this.id;
  final kind = this.kind;
  final objectNamePrefix = this.objectNamePrefix;
  final payloadFormat = this.payloadFormat;
  final selfLink = this.selfLink;
  final topic = this.topic;
  return {
    'custom_attributes': ?customAttributes,
    'etag': ?etag,
    'event_types': ?eventTypes,
    'id': ?id,
    'kind': ?kind,
    'object_name_prefix': ?objectNamePrefix,
    'payload_format': ?payloadFormat,
    'selfLink': ?selfLink,
    'topic': ?topic,
  };
}