LayoutProps constructor

LayoutProps({
  1. required String? h,
  2. required String? w,
  3. required String? maxW,
  4. required String? maxH,
  5. required String? minH,
  6. required String? minW,
  7. required String? height,
  8. required String? width,
})

Implementation

LayoutProps(
    {required this.h,
    required this.w,
    required this.maxW,
    required this.maxH,
    required this.minH,
    required this.minW,
    required this.height,
    required this.width});