EasyLayoutScope constructor

EasyLayoutScope({
  1. Key? key,
  2. required Widget child,
  3. required double hSpacing,
  4. required double vSpacing,
})

Implementation

EasyLayoutScope({
  Key? key,
  required Widget child,
  required this.hSpacing,
  required this.vSpacing,
}) : super(
        key: key,
        child: child,
      );