FileSnapshotEntry constructor

const FileSnapshotEntry({
  1. required String key,
  2. required String path,
  3. required String content,
})

Implementation

const FileSnapshotEntry({
  required this.key,
  required this.path,
  required this.content,
});