WagmiError constructor

WagmiError({
  1. WagmiErrors? name,
  2. String? message,
  3. List<String>? metaMessages,
  4. String? shortMessage,
  5. String? version,
  6. WagmiError? cause,
  7. String? docsPath,
  8. Map<String, dynamic>? details,
})

Implementation

WagmiError({
  this.name,
  this.message,
  this.metaMessages,
  this.shortMessage,
  this.version,
  this.cause,
  this.docsPath,
  this.details,
});