JwtResult constructor

JwtResult({
  1. dynamic body,
  2. bool? expired,
  3. dynamic header,
  4. String? message,
})

Implementation

JwtResult({
  this.body,
  this.expired,
  this.header,
  this.message,
});