add method

void add(
  1. List yourData
)

This method adds data to the tuple and populates the data field.

Implementation

void add(List<dynamic> yourData) {
  this.data.add(yourData);
}