addItem method

void addItem(
  1. dynamic item
)

Appends item to the end of the list.

Implementation

void addItem(dynamic item) {
  action("addItem", data: {"item": item});
}