GreenBox constructor

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

Implementation

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