length property

int get length

Get the length of the code of the group.

Implementation

int get length {
  if (_code == null) {
    return 0;
  }

  return _code!.length;
}