toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final cmdline = this.cmdline;
  final exePath = this.exePath;
  final pid = this.pid;
  final user = this.user;
  return {
    'attributes': ?attributes,
    'cmdline': ?cmdline,
    'exePath': ?exePath,
    'pid': ?pid,
    'user': ?user,
  };
}