PeepStudio constructor

const PeepStudio({
  1. Key? key,
  2. required void onChanged(
    1. Peep peep
    ),
  3. Color? backgroundColor,
  4. Color? activeColor,
})

Creates a new instance of PeepStudio

Implementation

const PeepStudio({
  super.key,
  required this.onChanged,
  this.backgroundColor,
  this.activeColor,
});