forgotpassword method
Implementation
Future<ServiceResult> forgotpassword(
String username, String useremail, String userresettype) async {
ServiceResult jsonData = await service.utilsServices.forgotpassword(
username: username,
useremail: useremail,
userresettype: userresettype,
);
return jsonData;
}