Change PasswordIntegration #1
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
class Otp {
|
||||
final String mobileNumber;
|
||||
final String type;
|
||||
|
||||
Otp({
|
||||
required this.mobileNumber,
|
||||
required this.type,
|
||||
});
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
return {
|
||||
'mobileNumber': mobileNumber,
|
||||
'type': type,
|
||||
};
|
||||
}
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
class OtpVerify{
|
||||
final String otp;
|
||||
|
||||
OtpVerify({
|
||||
required this.otp,
|
||||
}
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
return {
|
||||
'otp': otp,
|
||||
};
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
import 'dart:developer';
|
||||
|
||||
|
||||
import 'package:dio/dio.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
|
Reference in New Issue
Block a user