Dart - bucket.file()

This is reference documentation for the Nitric Dart SDK. To learn about Storage and Buckets in Nitric start with the Storage docs.

Create a reference to a file within a bucket.

import 'package:nitric_sdk/nitric.dart';
final assets = Nitric.bucket("assets").allow([
BucketPermission.read,
]);
final logo = assets.file("images/logo.png");

Parameters

  • Name
    name
    Required
    Required
    Type
    String
    Description

    The unique name/reference to the file.

Notes

The file does not need to exist, only a reference to that file is being created.

Available Operations

Last updated on Apr 3, 2025