EasyLayout constructor

const EasyLayout({
  1. Key? key,
  2. double? hSpacing,
  3. double? vSpacing,
  4. required Widget child,
  5. bool merge = true,
})

Implementation

const EasyLayout({
  Key? key,
  this.hSpacing,
  this.vSpacing,
  required this.child,
  this.merge = true,
}) : super(key: key);