SizedBox constructor

const SizedBox({
  1. double? height,
  2. double? width,
  3. TileWidget? child,
})

Implementation

const SizedBox({
  this.height,
  this.width,
  this.child,
});