withValue method

NimbostratusDocumentSnapshot<T> withValue(
  1. T? value
)

Implementation

NimbostratusDocumentSnapshot<T> withValue(T? value) {
  return NimbostratusDocumentSnapshot<T>(
    reference: reference,
    value: value,
    stream: stream,
  );
}