child method

StorageReference child(
  1. String path
)

Returns a child StorageReference to a relative path from the actual reference.

Implementation

StorageReference child(String path) =>
    StorageReference.getInstance(jsObject.child(path));