AuthyoResponseModel constructor

AuthyoResponseModel({
  1. bool? success,
  2. String? message,
  3. Data? data,
  4. String? status,
  5. String? error,
  6. String? errorCode,
})

Implementation

AuthyoResponseModel({
  this.success,
  this.message,
  this.data,
  this.status,
  this.error,
  this.errorCode,
});