login method

Future login(
  1. dynamic conf,
  2. String username,
  3. String password, {
  4. String? scope,
  5. bool storeInfo = true,
})

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,
    );