changePassword method

Future<JsonResult> changePassword(
  1. String? mobile,
  2. String? password
)

Implementation

Future<JsonResult> changePassword(String? mobile, String? password) {
  return bytedeskHttpApi.changePassword(mobile, password);
}