saveToLocal method
Saves an item to the local database.
This is a placeholder that should be overridden by concrete repository.
Implementation
@protected
Future<void> saveToLocal(T item, {Map<String, dynamic>? extra}) async {
log.warning('saveToLocal() not implemented for $T');
}