build static method
Build a widget for the given type and params. Returns null if the type is not registered.
Implementation
static Widget? build(String type, Map<String, dynamic> params) {
final builder = _builders[type];
if (builder == null) return null;
return builder(params);
}