forgotpassword method

Future<ServiceResult> forgotpassword(
  1. String username,
  2. String useremail,
  3. String userresettype
)

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;
}