weight method

int weight()

Implementation

int weight() {
  var base = _byteLength(false);
  var total = _byteLength(true);
  return base * 3 + total;
}