toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final entry = this.entry;
  final entryType = this.entryType;
  return {
    'displayName': ?displayName,
    'entry': ?entry,
    'entryType': ?entryType,
  };
}