AccurateSizedBox constructor

const AccurateSizedBox({
  1. Key? key,
  2. double width = 0,
  3. double height = 0,
  4. required Widget child,
})

Implementation

const AccurateSizedBox({
  Key? key,
  this.width = 0,
  this.height = 0,
  required Widget child,
}) : super(key: key, child: child);