toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final etag = this.etag;
  final name = this.name;
  final updateTime = this.updateTime;
  final userOwnedGrafeasNote = this.userOwnedGrafeasNote;
  return {
    'description': ?description,
    'etag': ?etag,
    'name': ?name,
    'updateTime': ?updateTime,
    'userOwnedGrafeasNote': ?userOwnedGrafeasNote,
  };
}