AnimatedLock constructor

const AnimatedLock({
  1. Key? key,
  2. required AnimationController controller,
  3. required bool showSwitch,
  4. required Color lockedColor,
  5. required Color unlockedColor,
  6. required Color overlayColor,
  7. Size? size,
  8. double lockRadius = 70,
})

Implementation

const AnimatedLock(
    {Key? key,
    required this.controller,
    required this.showSwitch,
    required this.lockedColor,
    required this.unlockedColor,
    required this.overlayColor,
    this.size,
    this.lockRadius = 70})
    : super(key: key);