OtpModel constructor
const
OtpModel({
- required String contact,
- required AuthMethod method,
- required String otp,
- DateTime? expiresAt,
- bool isVerified = false,
Implementation
const OtpModel({
required this.contact,
required this.method,
required this.otp,
this.expiresAt,
this.isVerified = false,
});