NiceLink constructor

const NiceLink({
  1. Key? key,
  2. required String to,
  3. required Widget child,
  4. Map<String, String>? params,
  5. bool replace = false,
  6. VoidCallback? onNavigate,
})

Implementation

const NiceLink({
  super.key,
  required this.to,
  required this.child,
  this.params,
  this.replace = false,
  this.onNavigate,
});