Link constructor

const Link({
  1. required Widget child,
  2. String? destination,
  3. int? destPage,
})

Link API.

Implementation

const Link({
  required this.child,
  this.destination,
  this.destPage,
});