saveAuthResp method

Future<bool> saveAuthResp(
  1. AuthResp authResp
)

save Auth Resp

Implementation

Future<bool> saveAuthResp(AuthResp authResp) async {
  return (await _prefs).setString(_keyAuthResp, authResp.toRawJson());
}