changePassword<T> method

Future<ApiResponse<T>> changePassword<T>(
  1. Map<String, Object> params
)

Changes a user password after access is successfully restored with the Auth.restore method.

Implementation

Future<ApiResponse<T>> changePassword<T>(Map<String, Object> params) =>
    _api.request<T>('account.changePassword', params);