toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() => <String, Object?>{
      'type': type,
      'name': name ?? '',
      'architectureBits': architectureBits ?? -1,
      'hostCPU': hostCPU ?? '',
      'operatingSystem': operatingSystem ?? '',
      'targetCPU': targetCPU ?? '',
      'version': version ?? '',
      'pid': pid ?? -1,
      'startTime': startTime ?? -1,
      'isolates': isolates?.map((f) => f.toJson()).toList(),
      'isolateGroups': isolateGroups?.map((f) => f.toJson()).toList(),
      'systemIsolates': systemIsolates?.map((f) => f.toJson()).toList(),
      'systemIsolateGroups':
          systemIsolateGroups?.map((f) => f.toJson()).toList(),
    };