Failure constructor

const Failure(
  1. String? name,
  2. String? code,
  3. dynamic error
)

Implementation

const Failure(
  this.name,
  this.code,
  this.error,
);