login method
Init the login process
Implementation
Future login(
dynamic conf,
String username,
String password, {
String? scope,
bool storeInfo = true,
}) async =>
await _performLogin(
conf,
username,
password,
scope: scope,
storeInfo: storeInfo,
);