recall abstract method

Future<User?>? recall(
  1. HttpConnect connect
)

It returns a Future object carrying the user if the given connection

  • is established by a user that was saved in save. Thus, caller can do:
  • var user = await rememberMe.recall(connect);
    
  • It can return null to indicate nothing being recalled.

Implementation

Future<User?>? recall(HttpConnect connect);