MaterialLayoutFormat constructor

MaterialLayoutFormat({
  1. LayoutValue<double>? margin,
  2. LayoutValue<double>? gutter,
})

Implementation

MaterialLayoutFormat({
  LayoutValue<double>? margin,
  LayoutValue<double>? gutter,
})  : this.margin = margin ?? _defaultMargin,
      this.gutter = gutter ?? _defaultMargin;