MemoryBaseline constructor

const MemoryBaseline({
  1. double allowedRssIncrease = defaultAllowedRssDeviation,
  2. required ValueSampler rss,
})

Implementation

const MemoryBaseline({
  // TODO(polina-c): add SDK version after fixing https://github.com/flutter/flutter/issues/61814
  this.allowedRssIncrease = defaultAllowedRssDeviation,
  required this.rss,
});