SnapshotEvent constructor

SnapshotEvent(
  1. String fileName, {
  2. required int snapshotNumber,
  3. required int rss,
  4. DateTime? timestamp,
})

Implementation

SnapshotEvent(
  this.fileName, {
  required this.snapshotNumber,
  required this.rss,
  DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();