toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final entityId = this.entityId;
  final entityIds = this.entityIds;
  final maxAge = this.maxAge;
  final path = this.path;
  return {
    'entityId': ?entityId,
    'entityIds': ?entityIds,
    'maxAge': ?maxAge,
    'path': ?path,
  };
}