peek method
Implementation
Future<BucketFile> peek({required String bucket, required String key}) => http
.request('${_config.serviceUrl}/data/$bucket/$key')
.use(http.context(_config))
.use(http.access())
.params({'peek': true})
.get()
.json((json) => BucketFile.fromJson(json));