14 lines
158 B
Dart
14 lines
158 B
Dart
class OtpVerify{
|
|
final String otp;
|
|
|
|
OtpVerify({
|
|
required this.otp,
|
|
}
|
|
);
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'otp': otp,
|
|
};
|
|
}
|
|
} |