debugMetadata property
DebugMetadata?
get
debugMetadata
inherited
Source location of this content, or of its nearest ancestor that has one; null for stories compiled without debug information.
Implementation
DebugMetadata? get debugMetadata {
if (_debugMetadata == null) {
final p = parent;
if (p != null) return p.debugMetadata;
}
return _debugMetadata;
}
set
debugMetadata
(DebugMetadata? value)
inherited
Sets this object's own source location.
Implementation
set debugMetadata(DebugMetadata? value) => _debugMetadata = value;