userAndPassword static method

SyncCredentials userAndPassword(
  1. String user,
  2. String password
)

Username and password authentication.

Implementation

static SyncCredentials userAndPassword(String user, String password) =>
    _SyncCredentialsUserPassword._(
        OBXSyncCredentialsType.USER_PASSWORD, user, password);