toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  return {
    'id': id,
    'depth': depth,
    'startedAt': startedAt,
    'endedAt': endedAt,
    'durationMs': durationMs,
    'writeCount': writeCount,
  };
}