ColdStartMetrics constructor

const ColdStartMetrics({
  1. required DateTime startTime,
  2. DateTime? endTime,
  3. int entitiesSynced = 0,
  4. int bytesTransferred = 0,
  5. Duration? duration,
  6. bool completed = false,
  7. String? failureReason,
})

Implementation

const ColdStartMetrics({
  required this.startTime,
  this.endTime,
  this.entitiesSynced = 0,
  this.bytesTransferred = 0,
  this.duration,
  this.completed = false,
  this.failureReason,
});