setTable method
Implementation
void setTable(int table, List<double> value) {
Map<String, String> map = {
MessageTag.MESSAGE_TYPE: MessageType.SET_TABLE,
MessageTag.TABLE_INDEX: table.toString(),
};
_sendPort.send([map, _callbackPort.sendPort, value]);
}