toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final debugString = this.debugString;
final errorCode = this.errorCode;
final linked = this.linked;
final maxAge = this.maxAge;
final relationExtensions = this.relationExtensions;
return {
'debugString': ?debugString,
'errorCode': ?errorCode,
'linked': ?linked,
'maxAge': ?maxAge,
'relationExtensions': ?relationExtensions,
};
}