items method

LipList items(
  1. List items
)

Adds multiple items to the list.

Implementation

LipList items(List<dynamic> items) {
  for (final item in items) {
    this.item(item);
  }
  return this;
}