Empty constructor

Empty({
  1. double? width,
  2. double? height,
  3. int? flex,
})

setting the flex field will ignore the width and height

Implementation

Empty({this.width, this.height, this.flex});