hasImplicitType property

  1. @override
bool hasImplicitType
inherited

Whether the variable element did not have an explicit type specified for it.

Implementation

@override
bool get hasImplicitType {
  return hasModifier(Modifier.IMPLICIT_TYPE);
}
void hasImplicitType=(bool hasImplicitType)
inherited

Set whether this variable element has an implicit type.

Implementation

set hasImplicitType(bool hasImplicitType) {
  setModifier(Modifier.IMPLICIT_TYPE, hasImplicitType);
}