class MyComponentA {
  String _param1 = 'ABC';
  int _param2 = 123;
  bool _open = false;
  String? _status;

  // Creates a new instance of the component.
  MyComponentA() {
    _status = 'Created';
    print('MyComponentA has been created.');
  }
}