LayoutConfig constructor

const LayoutConfig({
  1. double? width,
  2. double? height,
  3. double? maxWidth,
  4. double? maxHeight,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
  7. bool expand = true,
  8. double? aspectRatio,
})

Implementation

const LayoutConfig({
  this.width,
  this.height,
  this.maxWidth,
  this.maxHeight,
  this.padding,
  this.margin,
  this.expand = true,
  this.aspectRatio,
});