operator [] method
The stage called name, or null if the bundle has none.
Implementation
@override
ShaderHandle? operator [](String name) => missing.contains(name)
? null
: _handles.putIfAbsent(
name,
() => ShaderHandle(backend: name, name: name),
);