length property

  1. @override
int get length
override

Get the length of the code of the group.

Implementation

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

  return _code!.length;
}