class OtpVerify{ final String otp; OtpVerify({ required this.otp, } ); Map toJson() { return { 'otp': otp, }; } }