MiniBar constructor

const MiniBar({
  1. Key? key,
  2. required double height,
  3. required Color color,
})

Implementation

const MiniBar({
  super.key,
  required this.height,
  required this.color,
});