NoscriptLink constructor

const NoscriptLink({
  1. required String href,
  2. required String text,
  3. String? ariaLabel,
  4. String? rel,
})

Implementation

const NoscriptLink({
  required this.href,
  required this.text,
  this.ariaLabel,
  this.rel,
});