LayoutOptions constructor

LayoutOptions({
  1. ChildDisplayType? childDisplay,
  2. LayoutSizingMode? sizing,
})

Implementation

factory LayoutOptions(
        {ChildDisplayType? childDisplay, LayoutSizingMode? sizing}) =>
    LayoutOptions._(
        childDisplay: childDisplay?.value ?? ChildDisplayType.block.value,
        sizing: sizing?.value ?? LayoutSizingMode.blockLike.value);