signIn method

Future<bool> signIn()

Implementation

Future<bool> signIn() async {
  try {
    await service.signIn(SdkInfo.version);
    return true;
  } on DioException catch (e) {
    eventManager.notify(
      GenericEvent(event: "SIGN_IN_FAILED"),
    );
    return false;
  }
}