CkAuthResult<T> constructor

const CkAuthResult<T>({
  1. required bool isSuccess,
  2. T? data,
  3. String? message,
  4. int? statusCode,
  5. bool requiresOtp = false,
  6. CkOtpTrigger? otpTrigger,
  7. dynamic rawResponse,
})

Implementation

const CkAuthResult({
  required this.isSuccess,
  this.data,
  this.message,
  this.statusCode,
  this.requiresOtp = false,
  this.otpTrigger,
  this.rawResponse,
});