uuid property

String? get uuid

Implementation

String? get uuid {
  if (_uuid == null) {
    _uuid = _idGenerator.nextId();
  }
  return _uuid;
}