toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => <String, Object?>{
      'samplePeriod': samplePeriod ?? -1,
      'maxStackDepth': maxStackDepth ?? -1,
      'sampleCount': sampleCount ?? -1,
      'timeOriginMicros': timeOriginMicros ?? -1,
      'timeExtentMicros': timeExtentMicros ?? -1,
      'pid': pid ?? -1,
      'functions': functions?.map((f) => f.toJson()).toList(),
      'samples': samples?.map((f) => f.toJson()).toList(),
    };