toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final disableMemoryRevisions = this.disableMemoryRevisions;
  final displayName = this.displayName;
  final expireTime = this.expireTime;
  final fact = this.fact;
  final metadata = this.metadata;
  final name = this.name;
  final revisionExpireTime = this.revisionExpireTime;
  final revisionLabels = this.revisionLabels;
  final revisionTtl = this.revisionTtl;
  final scope = this.scope;
  final topics = this.topics;
  final ttl = this.ttl;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'disableMemoryRevisions': ?disableMemoryRevisions,
    'displayName': ?displayName,
    'expireTime': ?expireTime,
    'fact': ?fact,
    'metadata': ?metadata,
    'name': ?name,
    'revisionExpireTime': ?revisionExpireTime,
    'revisionLabels': ?revisionLabels,
    'revisionTtl': ?revisionTtl,
    'scope': ?scope,
    'topics': ?topics,
    'ttl': ?ttl,
    'updateTime': ?updateTime,
  };
}