firestore_size 1.1.1
firestore_size: ^1.1.1 copied to clipboard
A tiny package to calculate the approximate size (in bytes) of a Firestore document.
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