get method

Implementation

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