setUserProperty static method
Implementation
static Future<void> setUserProperty(dynamic user, String property, dynamic value) async {
if(user.id <= 0){
return;
}
return await storage.write("${user.id}_$property", value);
}
static Future<void> setUserProperty(dynamic user, String property, dynamic value) async {
if(user.id <= 0){
return;
}
return await storage.write("${user.id}_$property", value);
}