toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final author = this.author;
  final categories = this.categories;
  final components = this.components;
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final docLink = this.docLink;
  final lastUsedTime = this.lastUsedTime;
  final name = this.name;
  final sharedWith = this.sharedWith;
  final tags = this.tags;
  final templateBundle = this.templateBundle;
  final updateTime = this.updateTime;
  final usageCount = this.usageCount;
  final usageInfo = this.usageInfo;
  final visibility = this.visibility;
  return {
    'author': ?author,
    'categories': ?categories,
    'components': ?components,
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'docLink': ?docLink,
    'lastUsedTime': ?lastUsedTime,
    'name': ?name,
    'sharedWith': ?sharedWith,
    'tags': ?tags,
    'templateBundle': ?templateBundle,
    'updateTime': ?updateTime,
    'usageCount': ?usageCount,
    'usageInfo': ?usageInfo,
    'visibility': ?visibility,
  };
}