clearJWTToken static method
Clear JWT token from storage
Implementation
static Future<bool> clearJWTToken() async {
try {
final result = await platform.invokeMethod('clearJWTToken');
return result as bool? ?? false;
} on PlatformException catch (e) {
print("Failed to clear JWT token: '${e.message}'.");
return false;
}
}