FluidMargin constructor

const FluidMargin({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? margin,
  4. bool fluid = true,
  5. double? maxWidth,
})

Implementation

const FluidMargin({
  Key? key,
  required this.child,
  this.margin,
  this.fluid = true,
  this.maxWidth,
}) : super(key: key);