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 'storageId':
storageId = value;
return;
case 'path':
path = value;
return;
case 'expiration':
expiration = value;
return;
case 'authKey':
authKey = value;
return;
default:
throw UnimplementedError();
}
}