get method
Convert database value to model property value
Implementation
@override
String? get(dynamic value) {
// For one-way encryption (hashing), we return the hash
// Override this for two-way encryption
if (value == null) return null;
return value.toString();
}