firestore_size 1.1.1 copy "firestore_size: ^1.1.1" to clipboard
firestore_size: ^1.1.1 copied to clipboard

A tiny package to calculate the approximate size (in bytes) of a Firestore document.

example/example.md

Import the package #

import 'package:firestore_size/firestore_size.dart';
copied to clipboard

Get the size of a document #

// Get the document size
final int docSize = FirestoreSize.sizeOf(docSnapshot);

// Get the size of the data in the document
final int dataSize = FirestoreSize.sizeOf(map);

// Get the document size with extension
final int docSize = docSnapshot.sizeInBytes();

// pretty print the size
print(docSize.prettySize()); // Prints size like 256 Bytes, 1 KB, 2 MB etc.
copied to clipboard
6
likes
160
points
194
downloads

Publisher

verified publisherbirju.dev

Weekly Downloads

2024.09.19 - 2025.04.03

A tiny package to calculate the approximate size (in bytes) of a Firestore document.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

cloud_firestore, flutter, intl

More

Packages that depend on firestore_size