put method
Adds the specified data to the cache under the specified key.
Implementation
@override
Future<void> put({required String key, required Uint8List bytes, Duration maxAge = const Duration(days: 30)})=> _cache.put(key: key, bytes: bytes, maxAge: maxAge);