NiceSkipLink constructor

const NiceSkipLink({
  1. Key? key,
  2. String label = 'Skip to main content',
  3. required FocusNode targetFocus,
  4. Color? backgroundColor,
  5. Color? textColor,
})

Implementation

const NiceSkipLink({
  super.key,
  this.label = 'Skip to main content',
  required this.targetFocus,
  this.backgroundColor,
  this.textColor,
});