LayoutConfigs constructor

const LayoutConfigs({
  1. required double width,
  2. required double height,
  3. double? x,
  4. double? y,
})

Implementation

const LayoutConfigs({
  required this.width,
  required this.height,
  this.x,
  this.y,
});