isAbstract property
Whether the field is abstract.
Executable fields are abstract if they are declared with the abstract
keyword.
Implementation
@override
bool get isAbstract {
return hasModifier(Modifier.ABSTRACT);
}
Set whether this variable is abstract.
Implementation
set isAbstract(bool isAbstract) {
setModifier(Modifier.ABSTRACT, isAbstract);
}