getCookie static method

Future<String> getCookie()

Implementation

static Future<String> getCookie() async {
  final cookie = await secureStorage.read(key: cookieKey);
  return cookie ?? "";
}