EasyLayoutFluid constructor

const EasyLayoutFluid({
  1. Key? key,
  2. double? hSpacing,
  3. double? vSpacing,
  4. List<Fluidable> children = const <Fluidable>[],
})

Implementation

const EasyLayoutFluid({
  Key? key,
  this.hSpacing,
  this.vSpacing,
  this.children = const <Fluidable>[],
}) : super(key: key);