DimenLayout constructor

const DimenLayout({
  1. Key? key,
  2. bool primary = true,
  3. required Widget builder(
    1. BuildContext context,
    2. DimenData data
    ),
})

Implementation

const DimenLayout({
  super.key,
  this.primary = true,
  required this.builder,
});