fullyQualified property

bool fullyQualified

Whether or not these credentials contain all of the required information to create a client with access to a user's private data.

Implementation

bool get fullyQualified =>
    clientId != null &&
    clientSecret != null &&
    accessToken != null &&
    refreshToken != null &&
    tokenEndpoint != null &&
    scopes != null &&
    expiration != null;