set method
Convert model property value to database value
Implementation
@override
dynamic set(String? value) {
if (value == null) return null;
// Hash the value using SHA-256
final bytes = utf8.encode(value);
final hash = sha256.convert(bytes);
return hash.toString();
}