HTDeclaration constructor
const
HTDeclaration({
- String? id,
- String? classId,
- HTDeclarationNamespace? closure,
- HTSource? source,
- SourceRange idRange = SourceRange.empty,
- SourceRange sourceRange = SourceRange.empty,
- bool isPrivate = false,
- bool isExternal = false,
- bool isStatic = false,
- bool isConst = false,
- bool isMutable = false,
- bool isTopLevel = false,
Implementation
const HTDeclaration(
{this.id,
this.classId,
this.closure,
this.source,
this.idRange = SourceRange.empty,
this.sourceRange = SourceRange.empty,
bool isPrivate = false,
this.isExternal = false,
this.isStatic = false,
this.isConst = false,
this.isMutable = false,
this.isTopLevel = false})
: _isPrivate = isPrivate;