updatePassword method

Implementation

Future<PasswordUpdateResponse> updatePassword(
  PasswordUpdateRequest request,
) async =>
    PasswordUpdateResponse.fromJson(
      await _post(
        _buildUri('accounts:update'),
        request.toJson(),
      ),
    );