child method

Reference child(
  1. String path
)

Returns a reference to a relative path from this reference.

path The relative path from this reference. Leading, trailing, and consecutive slashes are removed.

Implementation

Reference child(String path) {
  return Reference._(storage, _delegate.child(path));
}