toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final command = this.command;
  final filePath = this.filePath;
  final fileType = this.fileType;
  final user = this.user;
  return {
    'command': ?command,
    'filePath': ?filePath,
    'fileType': ?fileType,
    'user': ?user,
  };
}