PeepImage constructor

const PeepImage({
  1. Key? key,
  2. required PeepAtom peepAtom,
  3. required double size,
})

Creates a new instance of PeepImage for accessory atoms.

Implementation

const PeepImage({
  super.key,
  required this.peepAtom,
  required this.size,
});