isLate property
Whether the variable uses late evaluation semantics.
This will always return false
unless the experiment 'non-nullable' is
enabled.
Implementation
@override
bool get isLate {
return hasModifier(Modifier.LATE);
}
Set whether this variable is late.
Implementation
set isLate(bool isLate) {
setModifier(Modifier.LATE, isLate);
}