child method

ReferencePlatform 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

ReferencePlatform child(String path) {
  return storage.ref(_pointer.child(path));
}