child method

DataSnapshot child(
  1. String path
)

Gets another DataSnapshot for the location at the specified relative path. The relative path can either be a simple child name (for example, "ada") or a deeper, slash-separated path (for example, "ada/name/first"). If the child location has no data, an empty DataSnapshot (that is, a DataSnapshot whose value is null) is returned.

Implementation

DataSnapshot child(String path) => DataSnapshot._(_delegate.child(path));