LinkError constructor

LinkError({
  1. required String code,
  2. required String type,
  3. required String message,
  4. String? displayMessage,
})

Implementation

LinkError({
  required this.code,
  required this.type,
  required this.message,
  this.displayMessage,
});