RivePanel constructor

const RivePanel({
  1. Key? key,
  2. Color backgroundColor = Colors.transparent,
  3. required Widget child,
})

Implementation

const RivePanel({
  super.key,
  this.backgroundColor = Colors.transparent,
  required this.child,
});