ElLayoutBuilder constructor

const ElLayoutBuilder({
  1. Key? key,
  2. required WidgetBuilder builder,
  3. ValueChanged<Size>? onInit,
  4. ValueChanged<Size>? onChanged,
})

Implementation

const ElLayoutBuilder({
  super.key,
  required this.builder,
  this.onInit,
  this.onChanged,
});