minTimestamp property

double? get minTimestamp

Implementation

double? get minTimestamp {
  if (tasks.isEmpty) {
    return null;
  }

  return tasks.values
      .map((task) => task.firstRenderTimestamp)
      .reduce((a, b) => a < b ? a : b);
}