Link constructor

Link({
  1. required String? type,
  2. required String? code,
  3. required int? version,
})

Implementation

Link({
  required this.type,
  required this.code,
  required this.version,
});