setToken static method

Future<void> setToken(
  1. String token
)

LOGIN — set + persist

Implementation

static Future<void> setToken(String token) async {
  _token = token;
  await AppStorage.setString(_tokenKey, token);
}