Error constructor

Error(
  1. String? code,
  2. String? key,
  3. String? message,
  4. String? versionId,
)

Implementation

Error(
  this.code,
  this.key,
  this.message,
  this.versionId,
);