NiceSkipLink constructor

const NiceSkipLink({
  1. Key? key,
  2. required GlobalKey<State<StatefulWidget>> targetKey,
  3. String label = 'Skip to main content',
})

Implementation

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