Adaptation constructor

const Adaptation({
  1. Key? key,
  2. Widget? child,
  3. double designWidth = 375,
})

Implementation

const Adaptation({
  Key? key,
  this.child,
  this.designWidth = 375,
}) : super(key: key);