doc method

DocRef<T> doc(
  1. String id
)

Implementation

DocRef<T> doc(String id) {
  return DocRef<T>.withReference(
      _ref_windows != null
          ? _ref_windows!.document(id)
          : _ref_original!.doc(id),
      converter: _converter);
}