addList method

DefineMRowModifier addList(
  1. List<Widget> value
)

Implementation

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