hostAttributes property
The subset of hostBindings
that are immutable bindings.
It's useful to separate these out because we can set them at build time and avoid change detecting them.
Implementation
Map<String, ast.AST> get hostAttributes {
if (_cachedHostAttributes == null) {
_computeHostBindingImmutability();
}
return _cachedHostAttributes!;
}