UnLockButton constructor

const UnLockButton({
  1. Key? key,
  2. required ValueNotifier<bool> lockNotifier,
  3. Widget? child,
  4. PlayerTheme? theme,
})

Implementation

const UnLockButton({
  super.key,
  required this.lockNotifier,
  this.child,
  this.theme,
});