resendVerificationEmail method
Implementation
Future<Response> resendVerificationEmail() async {
Response response = await api.post(
'/auth/user/email/verify/token',
data: {},
);
return response;
}
Future<Response> resendVerificationEmail() async {
Response response = await api.post(
'/auth/user/email/verify/token',
data: {},
);
return response;
}