LinkError constructor

LinkError({
  1. required LinkErrorType errorType,
  2. required String errorMessage,
  3. String? errorDetails,
})

Implementation

LinkError({
  required this.errorType,
  required this.errorMessage,
  this.errorDetails,
});