toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final covered = this.covered;
final eventHandler = this.eventHandler;
final index = this.index;
final source = this.source;
final target = this.target;
final transitionRoute = this.transitionRoute;
return {
'covered': ?covered,
'eventHandler': ?eventHandler,
'index': ?index,
'source': ?source,
'target': ?target,
'transitionRoute': ?transitionRoute,
};
}