flutter_session
flutter_session copied to clipboard
Add A New Feature To check if session contains any particular key
currently the package doesn't support to check if session contains any particular key.
for example:
bool isset = await FlutterSession().contains('key')
Can't you use this check this way ?
bool isset = await FlutterSession().get("key") !=null;