clear method

void clear()

Clear the data. The set schema information will not be cleared.

Implementation

void clear(){
  _headers.values.forEach((record)=>record.clear());
  _recordLists.values.forEach((list)=>list.clear());
}