ErrorInfo constructor

ErrorInfo({
  1. String? domain,
  2. Map<String, String>? metadatas,
  3. String? reason,
})

Implementation

ErrorInfo({
  this.domain,
  this.metadatas,
  this.reason,
});