MColumn constructor

MColumn({
  1. List<Widget>? children,
  2. List<Widget> builder()?,
  3. DefineMColumnModifier? modifier,
})

Implementation

MColumn({
  this.children,
  this.builder,
  this.modifier,
}) : super(key: modifier?.valueKey ?? null);