CkAuthResult<T> constructor
const
CkAuthResult<T> ({
- required bool isSuccess,
- T? data,
- String? message,
- int? statusCode,
- bool requiresOtp = false,
- CkOtpTrigger? otpTrigger,
- dynamic rawResponse,
Implementation
const CkAuthResult({
required this.isSuccess,
this.data,
this.message,
this.statusCode,
this.requiresOtp = false,
this.otpTrigger,
this.rawResponse,
});