toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final action = this.action;
final data = this.data;
final dataType = this.dataType;
final relativePath = this.relativePath;
return {
'action': ?action,
'data': ?data,
'dataType': ?dataType,
'relativePath': ?relativePath,
};
}