get method
Implementation
Future<DocumentSnapshot<T>> get() async {
  final result = await firestore.getAll([this]);
  return result.single;
}Future<DocumentSnapshot<T>> get() async {
  final result = await firestore.getAll([this]);
  return result.single;
}