buildChildren method
Synchronously evaluates items and maps each element through builder.
Used by SSR rendering and unkeyed browser reconciliation passes.
Implementation
List<BloomNode> buildChildren() =>
items().map((item) => builder(item)).toList();