setColumn method
Sets the value of a column by its name. Used in communication with the database.
Implementation
@override
void setColumn(
String columnName,
value,
) {
switch (columnName) {
case 'id':
id = value;
return;
case 'userId':
userId = value;
return;
case 'email':
email = value;
return;
case 'hash':
hash = value;
return;
default:
throw UnimplementedError();
}
}