isAsync property

  1. @override
bool get isAsync
override

Getter that returns true if instance contains async parts or require async initialization

If you override this getter always use super.isAsync if you not always returning true

Implementation

// coverage:ignore-start
@override
bool get isAsync {
  return super.isAsync ||
      getFullConnectorsList().indexWhere((element) => element.isAsync) != -1;
}