RuiLogoPanel constructor

const RuiLogoPanel({
  1. Key? key,
  2. required Widget icon,
  3. required String title,
  4. String? subTitle,
  5. String? imageUrl,
  6. VoidCallback? onLogoPressed,
  7. required bool isOpen,
  8. double? height = 56,
  9. double? logoSize = 56,
})

Implementation

const RuiLogoPanel({
  super.key,
  required this.icon,
  required this.title,
  this.subTitle,
  this.imageUrl,
  this.onLogoPressed,
  required this.isOpen,
  this.height = 56,
  this.logoSize = 56,
});