isAbstract property

  1. @override
bool isAbstract
override

Return true if this method is declared to be an abstract method.

Implementation

@override
bool get isAbstract {
  FunctionBody body = _body;
  return externalKeyword == null &&
      (body is EmptyFunctionBody && !body.semicolon.isSynthetic);
}