callAuthentication method

  1. @override
Future<ThirdPartySessionModel?> callAuthentication(
  1. ModSessionDTO dto
)
override

Launches auth flow. Must be overriden by children

Implementation

@override
Future<ThirdPartySessionModel?> callAuthentication(ModSessionDTO dto) async {
  return await this.repo.signIn(
      dto.mail,
      dto.pass,
      SessionTypes.CUSTOM);
}