EasyLayoutAuto constructor

EasyLayoutAuto({
  1. Key? key,
  2. double? hSpacing,
  3. double? vSpacing,
  4. required double toggleWidth,
  5. required List<Widget> children,
  6. Axis narrowMode = Axis.vertical,
  7. Axis wideMode = Axis.horizontal,
})

Implementation

EasyLayoutAuto({
  Key? key,
  this.hSpacing,
  this.vSpacing,
  required this.toggleWidth,
  required this.children,
  this.narrowMode = Axis.vertical,
  this.wideMode = Axis.horizontal,
}) : super(key: key);