TokenResponse constructor

TokenResponse({
  1. String? statusCode,
  2. String? responseCode,
  3. String? status,
  4. String? message,
  5. Data? data,
})

Implementation

TokenResponse({
  this.statusCode,
  this.responseCode,
  this.status,
  this.message,
  this.data,
});