BlueBox constructor

const BlueBox({
  1. double width = 100.0,
  2. double height = 100.0,
  3. Key? key,
})

Implementation

const BlueBox({this.width = 100.0, this.height = 100.0, Key? key})
    : super(key: key);