map method
override
Maps the given row returned by the database into the fitting data class.
Implementation
@override
CacheRow map(Map<String, dynamic> data, {String? tablePrefix}) {
final effectivePrefix = tablePrefix != null ? '$tablePrefix.' : '';
return CacheRow(
checksum: attachedDatabase.typeMapping
.read(DriftSqlType.string, data['${effectivePrefix}checksum'])!,
);
}