toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final indexError = this.indexError;
final indexTime = this.indexTime;
final name = this.name;
return {
'displayName': ?displayName,
'indexError': ?indexError,
'indexTime': ?indexTime,
'name': ?name,
};
}