The Dart SDK is currently in experimental status. If you would like to provide feedback, please reach out to us with your suggestions and comments on our Discord.
Dart - bucket.file.exists()
Determine if a file exists in a bucket.
import 'package:nitric_sdk/nitric.dart';
final assets = Nitric.bucket("assets").allow([
BucketPermission.read,
]);
final exists = await assets.file("images/logo.png").exists();
Examples
Determine if a file exists
import 'package:nitric_sdk/nitric.dart';
final assets = Nitric.bucket("assets").allow([
BucketPermission.read,
]);
final exists = await assets.file("images/logo.png").exists();