replicate method
Implementation
DataSet<Model> replicate() {
var ds = DataSet<Model>(_instance, route: _initialRoute, origin: _fetcher.path);
_children.keys.forEach((key) => ds._children[key] = _children[key]!.replicate());
return ds;
}
DataSet<Model> replicate() {
var ds = DataSet<Model>(_instance, route: _initialRoute, origin: _fetcher.path);
_children.keys.forEach((key) => ds._children[key] = _children[key]!.replicate());
return ds;
}