addList method

DefineMColumnModifier addList(
  1. List<Widget> value
)

Implementation

DefineMColumnModifier addList(List<Widget> value) {
  return this.copyWith(children: (this.children ?? [])..addAll(value));
}