toJson method

Map<String, dynamic> toJson()

Implementation

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