Failure constructor

const Failure({
  1. String message = "Unable to process service at this time",
  2. String code = "",
})

Implementation

const Failure(
    {this.message = "Unable to process service at this time",
    this.code = ""});