logon method

Future<bool> logon(
  1. Jwt? jwt
)

Implementation

Future<bool> logon(Jwt? jwt) async {
  if (jwt != null) _user.logon(jwt);
  return true;
}