setCID method

bool setCID(
  1. dynamic timestamp,
  2. dynamic cid
)

Implementation

bool setCID(timestamp, cid) {
  if (_data[timestamp] == null) return false;
  _data[timestamp]!.cid = cid;
  return true;
}