ComponentInstance constructor

ComponentInstance({
  1. required Object component,
  2. required Map<String, Object?> arguments,
  3. String? name,
  4. Object? visible,
})

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));