isAsync property

bool get isAsync

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

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

Implementation

// coverage:ignore-start
bool get isAsync {
  return configuration.isAsync != null
      ? configuration.isAsync!
      : getFullPartConnectorsList()
              .indexWhere((element) => element.isAsync) !=
          -1;
}