save method
Saves data to cache
params Caching key
entity Entity to cache
Implementation
@override
Future<void> save(P params, Entity<D> entity) {
return _run((sendPort) => _Command.save(sendPort, params, entity)).then((result) => result.toFuture());
}