toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aspects = this.aspects;
  final createTime = this.createTime;
  final entrySource = this.entrySource;
  final entryType = this.entryType;
  final fullyQualifiedName = this.fullyQualifiedName;
  final name = this.name;
  final parentEntry = this.parentEntry;
  final updateTime = this.updateTime;
  return {
    'aspects': ?aspects,
    'createTime': ?createTime,
    'entrySource': ?entrySource,
    'entryType': ?entryType,
    'fullyQualifiedName': ?fullyQualifiedName,
    'name': ?name,
    'parentEntry': ?parentEntry,
    'updateTime': ?updateTime,
  };
}