ComponentInstance constructor
ComponentInstance({})
Implementation
ComponentInstance({
required this.component,
required Map<String, Object?> arguments,
String? name,
Object? visible,
}) : arguments = UnmodifiableMapView(Map<String, Object?>.from(arguments)),
super(name: name, visible: _normalizeVisibility(visible));