getScreenContent method

List<DCFComponentNode> getScreenContent(
  1. String hostName
)

Get all content for a specific host

hostName - Host identifier Returns list of content nodes for this host

Implementation

List<DCFComponentNode> getScreenContent(String hostName) {
  return List.from(_screens[hostName] ?? []);
}