ImageStats constructor

const ImageStats({
  1. int? current,
  2. int? allowed,
})

Implementation

const ImageStats({
  int? current,
  int? allowed,
})  : current = current ?? 0,
      allowed = allowed ?? 0;