Skip to content

Commit 3557c85

Browse files
committed
Use consistent placeholder format
1 parent c3cb646 commit 3557c85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/docs/products/storage/images/+page.markdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ void main() { // Init SDK
106106
//displaying image preview
107107
FutureBuilder(
108108
future: storage.getFilePreview(
109-
bucketId: '[BUCKET_ID]',
110-
fileId: '[FILE_ID]',
109+
bucketId: '<BUCKET_ID>',
110+
fileId: '<FILE_ID>',
111111
), //works for both public file and private file, for private files you need to be logged in
112112
builder: (context, snapshot) {
113113
return snapshot.hasData && snapshot.data != null

0 commit comments

Comments
 (0)