Link constructor

Link({
  1. required String? href,
  2. required String? type,
})

Returns a new Link instance.

Implementation

Link({
  required this.href,
  required this.type,
});